home *** CD-ROM | disk | FTP | other *** search
- <!doctype html public "-//W3C//DTD HTML 4.0 //EN">
- <html>
- <head>
- <title>Title here!</title>
- </head>
- <body>
- <?php
- $cognome='Sensale';
- $nome='Rosario';
- $sesso='M';
- $DataNascita="19/05/1980";
- $Comune="Napoli";
- //CF($cognome,$nome,$sesso,$DataNascita,$Comune);
-
- include_once 'CF.class';
- $object = new Class_CF();
- $object->SetLastName('Sensale');
- $object->SetName('Rosario');
- $object->SetBornDate('19/05/1950');
- $object->SetSex('m');
- $object->SetCom('Napoli');
- echo $object->Create_CF();
- echo $object->Check_CF('XXXOKPKOMAKAK');
- ?>
- </body>
- </html>
-
-